Skip to content

Increase maximum retry count for deploy run controller #1450

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 1, 2024

Conversation

nicktrn
Copy link
Collaborator

@nicktrn nicktrn commented Nov 1, 2024

With jitter and operation timeouts we should now retry for up to 2-6m. This will improve resilience to any intermittent issues up and down the chain.

Summary by CodeRabbit

  • New Features

    • Increased maximum retry count for deployment operations to enhance resilience during failures.
  • Bug Fixes

    • Improved error handling with more detailed logging for task execution failures.
    • Enhanced task management by ensuring proper detachment from event listeners during termination.

Copy link

changeset-bot bot commented Nov 1, 2024

🦋 Changeset detected

Latest commit: 1b023f6

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 10 packages
Name Type
trigger.dev Patch
@trigger.dev/build Patch
@trigger.dev/core Patch
@trigger.dev/react-hooks Patch
@trigger.dev/sdk Patch
@trigger.dev/database Patch
@trigger.dev/otlp-importer Patch
@internal/redis-worker Patch
@internal/zod-worker Patch
@internal/testcontainers Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor

coderabbitai bot commented Nov 1, 2024

Walkthrough

The changes in this pull request increase the maximum retry count for deploy run controller operations in the trigger.dev configuration from 5 to 7. This adjustment is reflected in the deploy-run-controller.ts file, where the ExponentialBackoff class's retry logic is modified to allow more attempts during task execution. Additionally, the error handling has been improved with enhanced logging for failures, and the task run process is now better managed to prevent memory leaks.

Changes

File Path Change Summary
.changeset/poor-parrots-attend.md Updated configuration: increased max retry count for deploy run controller operations to 7.
packages/cli-v3/src/entryPoints/deploy-run-controller.ts Updated maxRetries from 5 to 7 in defaultBackoff and #readyForLazyAttempt. Enhanced error logging and task management.

Possibly related PRs

🐇 In the meadow, where bunnies play,
We’ve made our retries grow today!
From five to seven, we leap and bound,
With logs so clear, no troubles found.
Hops of joy for tasks that run,
Resilience blooms, let’s have some fun! 🌼


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@coderabbitai coderabbitai bot changed the title @coderabbitai Increase maximum retry count for deploy run controller to 7 Nov 1, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (1)
.changeset/poor-parrots-attend.md (1)

1-5: Enhance the changeset description with more details.

While the current description captures the main change, it would be more helpful to include additional details about the changes:

 ---
 "trigger.dev": patch
 ---
 
-Increase max retry count for deploy run controller operations
+Increase max retry count for deploy run controller operations from 5 to 7
+
+- Add jitter and operation timeouts
+- Implement retry window of 2-6 minutes
+- Enhance error logging for failures
+- Improve task run process to prevent memory leaks
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between da08e50 and 1b023f6.

📒 Files selected for processing (2)
  • .changeset/poor-parrots-attend.md (1 hunks)
  • packages/cli-v3/src/entryPoints/deploy-run-controller.ts (2 hunks)
🔇 Additional comments (2)
packages/cli-v3/src/entryPoints/deploy-run-controller.ts (2)

421-421: LGTM: Enhanced retry mechanism for lazy attempts.

The increase in maxRetries from 3 to 7 with a minimum delay of 10ms provides better resilience for lazy attempt operations.

Let's verify the retry timing calculations:

#!/bin/bash
# Description: Check for other retry configurations in lazy attempt related code

# Test: Search for other lazy attempt retry configurations
rg -A 5 'readyForLazyAttempt|READY_FOR_LAZY_ATTEMPT'

46-46: LGTM: Increased retry attempts for better reliability.

The increase in maxRetries from 5 to 7 with full jitter aligns with the PR objectives to implement longer retry durations.

Let's verify the retry configuration is consistent across the codebase:

✅ Verification successful

Let me gather more information to verify the retry configurations.


Retry configuration is consistent with the codebase patterns

The increase in maxRetries from 5 to 7 in defaultBackoff is appropriate as each usage of ExponentialBackoff in the codebase follows its own specific retry strategy based on its use case:

  • The default configuration (7 retries with FullJitter) for general operations
  • Task replay with 3 retries and FullJitter
  • Checkpointing with EqualJitter and time-based limits
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for other ExponentialBackoff configurations that might need similar updates

# Test: Search for ExponentialBackoff configurations
rg -A 3 'new ExponentialBackoff\('

Length of output: 7717


Script:

#!/bin/bash
# Search for ExponentialBackoff configurations and their retry settings
rg -A 5 'new ExponentialBackoff\(' --type ts

Length of output: 1934

Copy link

pkg-pr-new bot commented Nov 1, 2024

@trigger.dev/build

pnpm add https://pkg.pr.new/triggerdotdev/trigger.dev/@trigger.dev/build@1450

@trigger.dev/sdk

pnpm add https://pkg.pr.new/triggerdotdev/trigger.dev/@trigger.dev/sdk@1450

@trigger.dev/react-hooks

pnpm add https://pkg.pr.new/triggerdotdev/trigger.dev/@trigger.dev/react-hooks@1450

trigger.dev

pnpm add https://pkg.pr.new/triggerdotdev/trigger.dev@1450

@trigger.dev/core

pnpm add https://pkg.pr.new/triggerdotdev/trigger.dev/@trigger.dev/core@1450

commit: 1b023f6

@nicktrn nicktrn changed the title Increase maximum retry count for deploy run controller to 7 Increase maximum retry count for deploy run controller Nov 1, 2024
@nicktrn nicktrn merged commit fa18e6c into main Nov 1, 2024
9 checks passed
@nicktrn nicktrn deleted the fix/deploy-controller-backoff branch November 1, 2024 11:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant